home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Schooolhouse Version 10.0
/
CD Schooolhouse Version 10.0.ISO
/
pc
/
dos
/
misc
/
dosutl21
/
fmt.bat
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1994-05-16
|
301 b
|
17 lines
@echo off
if "%1"=="x" goto noformcmd
if "%1"=="X" goto noformcmd
format %1 %FORMCMD% %2 %3 %4 %5 %6 %7 %8 %9
if errorlevel 1 goto error
goto end
:noformcmd
shift
format %1 %2 %3 %4 %5 %6 %7 %8 %9
if errorlevel 1 goto error
goto end
:error
echo The disk could not be formatted!
:end